home *** CD-ROM | disk | FTP | other *** search
/ IRIX Installation Tools & Overlays 2002 November / SGI IRIX Installation Tools & Overlays 2002 November - Disc 4.iso / dist / motif21_dev.idb / usr / Motif-2.1 / include / Xm / Separator.h.z / Separator.h
C/C++ Source or Header  |  2002-10-15  |  1KB  |  51 lines

  1. /* 
  2.  *  @OSF_COPYRIGHT@
  3.  *  COPYRIGHT NOTICE
  4.  *  Copyright (c) 1990, 1991, 1992, 1993 Open Software Foundation, Inc.
  5.  *  ALL RIGHTS RESERVED (MOTIF). See the file named COPYRIGHT.MOTIF for
  6.  *  the full copyright text.
  7. */ 
  8. /* 
  9.  * HISTORY
  10. */ 
  11. /*   $XConsortium: Separator.h /main/11 1995/07/13 17:59:45 drk $ */
  12. /*
  13. *  (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
  14. /*  Separator Widget  */
  15. #ifndef _XmSeparator_h
  16. #define _XmSeparator_h
  17.  
  18. #include <Xm/Xm.h>
  19.  
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23.  
  24. #ifndef XmIsSeparator
  25. #define XmIsSeparator(w) XtIsSubclass(w, xmSeparatorWidgetClass)
  26. #endif /* XmIsSeparator */
  27.  
  28. externalref WidgetClass xmSeparatorWidgetClass;
  29.  
  30. typedef struct _XmSeparatorClassRec * XmSeparatorWidgetClass;
  31. typedef struct _XmSeparatorRec      * XmSeparatorWidget;
  32.  
  33.  
  34. /********    Public Function Declarations    ********/
  35.  
  36. extern Widget XmCreateSeparator( 
  37.                         Widget parent,
  38.                         char *name,
  39.                         ArgList arglist,
  40.                         Cardinal argcount) ;
  41.  
  42. /********    End Public Function Declarations    ********/
  43.  
  44.  
  45. #ifdef __cplusplus
  46. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  47. #endif
  48.  
  49. #endif /* _XmSeparator_h */
  50. /* DON'T ADD STUFF AFTER THIS #endif */
  51.